html, body, a, button, img, svg, .puzzle-bubble, .puzzle-label {
  cursor: none !important;
}


/* base cursor — always inverting */
.custom-cursor{
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999999;
  isolation: isolate;

  background: #ffffff;             /* white dot */
  mix-blend-mode: difference;      /* ALWAYS invert */

  transform: translate(-50%, -50%) scale(1);
  transition: transform .18s ease, opacity .2s ease;
}

.custom-cursor.is-clickable{
  background:#fff;
  mix-blend-mode:difference;
  transform:translate(-50%,-50%) scale(3);
}


.custom-cursor.is-hidden{
  opacity: 0;
}

@media (pointer: coarse) {
  #customCursor {
    display: none !important;
  }
  body {
    cursor: auto !important;
  }
}

/* ===========================
   CUSTOM TEXT SELECTION COLOR
   =========================== */

/* Chrome / Edge / Safari */
::selection {
  background: #f7ba8c; /* orange highlight */
  color: #335b93ff;      /* blue text */
}

/* Firefox needs its own selector */
::-moz-selection {
  background: #f7ba8c;
  color: #335b93ff;
}

